{literal}
body {
  padding-top: 60px;
  padding-bottom: 40px;
  margin-left: 10px;
  background-color: #ffffff; /* Plain white background */
  color: #000000; /* Black text color */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

.form-container {
  max-width: 400px;
  width: 100%; /* Make the form responsive */
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9; /* Light gray background for form */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.form-container input[type="text"],
.form-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px; /* Rounded input fields */
  border: 1px solid #ccc; /* Light gray borders */
  background-color: #ffffff; /* White background for inputs */
  color: #000000; /* Black text inside inputs */
}

.form-container input[type="submit"] {
  background-color: #007bff; /* Blue button */
  color: white;
  cursor: pointer;
  font-size: 17px; /* Increase the font size */
  height: 36px;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  width: 100%; /* Make the button take full width of the form */
  display: flex; /* Use flexbox for the button */
  justify-content: center; /* Horizontally center the text inside */
  align-items: center; /* Vertically center the text inside */
  text-align: center; /* Ensure the text is centered */
}

.form-container input[type="submit"]:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.form-container a {
  color: #007bff; /* Blue links */
  text-decoration: none;
}

.form-container a:hover {
  text-decoration: underline; /* Hover effect for links */
}

.welcome-message {
  text-align: center;
  margin-top: 20px;
}

.content-area {
  width: 100%;
  max-width: 1000px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 768px) {
  .content-area {
    padding: 10px;
  }
}
{/literal}
